c# optional parameters

65

c# optional parameters -

// Using Optional Attribute
private void SomeMethod([Optional] string param)
{
    ...
}

// Using Default Values
private void SomeMethod(string param = null)
{
    ...
}

c# optional parameters using -

 using System.Runtime.InteropServices; 

optional parameter get request c# -

public string GetFindBooks(string author="", string title="", string isbn="", string  somethingelse="", DateTime? date= null) 
{
    // ...
}

Comments

Submit
0 Comments